DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1DataCollectionList<T> Class / Insert Method / Insert(Int32,T) Method
The zero-based index at which item should be inserted.
The object to insert into the IList.

In This Topic
    Insert(Int32,T) Method
    In This Topic
    Inserts an item to the IList at the specified index.
    Syntax
    'Declaration
     
    Public Overloads Sub Insert( _
       ByVal index As Integer, _
       ByVal item As T _
    ) 
    public void Insert( 
       int index,
       T item
    )

    Parameters

    index
    The zero-based index at which item should be inserted.
    item
    The object to insert into the IList.
    See Also